print is an inbuilt python function that writes to the console. What the print writes to the console depends on what is given to it to print. The print function can writes data such as integers, strings, boolean, lists etc. Practically waht so ever you give to the print function, it will write it out for the user to see....
read more about the print function on the www.python.org website
In [1]:
print "Hello World"
Create a file (give it any name you want but make sure it has the .py extension)